SetFileInputFilesRequest

data class SetFileInputFilesRequest(files: List<String>, nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)

Represents request frame that can be used with DOM#setFileInputFiles operation call.

Sets files for the given file input element.

See also

Constructors

SetFileInputFilesRequest
Link copied to clipboard
fun SetFileInputFilesRequest(files: List<String>, nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node.
files
Link copied to clipboard
val files: List<String>
Array of file paths to set.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node wrapper.

Sources

jvm source
Link copied to clipboard